home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frm3_4_4
- Caption = "3-4-4"
- ClientHeight = 1200
- ClientLeft = 1020
- ClientTop = 1995
- ClientWidth = 5055
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1200
- ScaleWidth = 5055
- Begin VB.CommandButton cmdDisplay
- Caption = "Display Quote"
- Default = -1 'True
- Height = 495
- Left = 1680
- TabIndex = 1
- Top = 600
- Width = 1815
- End
- Begin VB.PictureBox picQuote
- Height = 375
- Left = 120
- ScaleHeight = 315
- ScaleWidth = 4755
- TabIndex = 0
- Top = 120
- Width = 4815
- End
- Attribute VB_Name = "frm3_4_4"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDisplay_Click()
- picQuote.Cls
- quote1 = "The ballgame isn't over, "
- quote2 = "until it's over."
- quote = quote1 & quote2
- picQuote.Print quote & " Yogi Berra"
- End Sub
-